home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / workst1a / form4.frm next >
Text File  |  1999-10-03  |  2KB  |  47 lines

  1. VERSION 5.00
  2. Begin VB.Form Form4 
  3.    Caption         =   "LARGE mode"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form4"
  9.    ScaleHeight     =   8595
  10.    ScaleWidth      =   11880
  11.    StartUpPosition =   3  'Windows Default
  12.    WindowState     =   2  'Maximized
  13.    Begin VB.CommandButton Command1 
  14.       Caption         =   "Back to compact mode"
  15.       Height          =   255
  16.       Left            =   0
  17.       TabIndex        =   1
  18.       Top             =   0
  19.       Width           =   11775
  20.    End
  21.    Begin VB.TextBox Text1 
  22.       Height          =   8295
  23.       Left            =   0
  24.       MultiLine       =   -1  'True
  25.       TabIndex        =   0
  26.       Top             =   240
  27.       Width           =   11775
  28.    End
  29. End
  30. Attribute VB_Name = "Form4"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Private Sub Command1_Click()
  36. If Form1.Label3.Caption = "TEXT 1" Then Form1.Text1.Text = Form4.Text1.Text
  37. If Form1.Label3.Caption = "TEXT 2" Then Form1.Text2.Text = Form4.Text1.Text
  38. If Form1.Label3.Caption = "TEXT 3" Then Form1.Text3.Text = Form4.Text1.Text
  39. If Form1.Label3.Caption = "TEXT 4" Then Form1.Text4.Text = Form4.Text1.Text
  40. If Form1.Label3.Caption = "TEXT 5" Then Form1.Text5.Text = Form4.Text1.Text
  41. If Form1.Label3.Caption = "TEXT 6" Then Form1.Text6.Text = Form4.Text1.Text
  42. If Form1.Label3.Caption = "TEXT 7" Then Form1.Text7.Text = Form4.Text1.Text
  43.  
  44. Unload Me
  45. End Sub
  46.  
  47.